home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_08_10
/
8n10084a
< prev
next >
Wrap
Text File
|
1990-08-18
|
592b
|
44 lines
Listing 1
/*--- test.h ------------------------------------*/
#ifdef MAIN
# define EXTERN
#else
# define EXTERN extern
#endif
EXTERN int i ;
/*--- test1.c (main file) -----------------------*/
#define MAIN
#include "test.h"
void main (void) ;
void test2 (void) ;
void main(void)
{
i = 3 ;
test2 () ;
}
#undef MAIN
/*--- test2.c -----------------------------------*/
#include "test.h"
int printf(const char *, ...);
void test2 (void)
{
printf("i is %d\n", i) ;
}
/*-----------------------------------------------*/